home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / trubasic / rolldemos / run < prev    next >
Encoding:
Text File  |  1994-08-02  |  249 b   |  11 lines

  1. if [ -f $1 -a ! -x $1 ]
  2.   then $TRU -i $1 ; exit 
  3.   else if [ -f $1.trc -a ! -x $1.trc ]
  4.     then $TRU -i $1.trc ; exit
  5.     else if [ -f $1.tru -a ! -x $1.tru ]
  6.       then $TRU -i $1.tru ; exit
  7.       else echo "cannot locate file $1"
  8.     fi
  9.   fi
  10. fi
  11.